The next generation of wireless network auditing and security testing tools.
Designed for security professionals and ethical hackers, Wifi Cracker 2.0 provides advanced capabilities to identify vulnerabilities in wireless networks and ensure robust security configurations.
Rapidly discover available wireless networks, hidden SSIDs, and connected clients in your vicinity.
Identify weaknesses in WEP, WPA, and WPA2 protocols to fortify your network defenses against intrusion.
Optimized algorithms for faster auditing and testing with minimal resource consumption.
A comprehensive, menu-driven Wi-Fi penetration testing toolkit written in Go. This tool automates and simplifies the usage of powerful wireless security tools like aircrack-ng, hostapd, and hashcat, making complex attacks accessible through a user-friendly command-line interface.
Developed by Jutt Cyber Tech.
This tool is intended for educational and authorized security testing purposes only. Using this tool on networks without explicit permission is illegal and unethical. The developer assumes no liability for any misuse or damage caused by this program.
View detailed diagnostic information about your system hardware and underlying wireless network interface cards (NICs) to ensure compatibility.
Seamlessly toggle your wireless interfaces in and out of monitor mode to prepare for packet injection and raw traffic capturing.
Scan for nearby access points in real-time utilizing airodump-ng, uncovering hidden SSIDs and network details.
Isolate specific networks to view actively connected clients, then execute precise deauthentication attacks to forcibly disconnect them.
aircrack-ng
hashcat for high-speed resolution
To use Wifi Cracker 2.0 for capturing handshakes and performing deauthentication attacks, you need a wireless adapter that supports monitor mode and packet injection.
View compatible adapters →This program is designed for Debian-based Linux distributions like Ubuntu, Kali Linux, or Parrot OS.
First, you need to install the required system tools that wifi-cracker uses to perform attacks.
# Update your package list and install all dependencies
sudo apt-get update && sudo apt-get install -y \
aircrack-ng \
hostapd \
dnsmasq \
xterm \
gnome-terminal \
konsole \
xfce4-terminal \
iw \
procps \
hashcat
You can either download the pre-compiled binary (recommended) or build it from the source code.
This single command downloads the latest version of wifi-cracker, makes it executable, and moves it to a location in your system's PATH.
wget https://github.com/juttcybertech/WIFI-CRACKER-2.0/releases/latest/download/wifi-cracker -O wifi-cracker && \
chmod +x wifi-cracker && \
sudo mv wifi-cracker /usr/local/bin/
Once installed, you can launch the tool immediately:
sudo wifi-cracker
For users who want to build the program from the source code. You will need git and go (version 1.18 or newer) installed.
# 1. Clone the repository
git clone https://github.com/juttcybertech/WIFI-CRACKER-2.0.git
cd WIFI-CRACKER-2.0
# 2. Build the Go binary
go build -o wifi-cracker main.go
# 3. Move the binary to your PATH
sudo mv wifi-cracker /usr/local/bin/
Once installed, you can run the program from any directory using the following command. It requires sudo because it needs to manage network interfaces and run privileged tools.
sudo wifi-cracker
This project is licensed under the MIT License. See the LICENSE file for details.